PHP Function List

<br />warning: push.default is unset; its implicit value is changing in<br />git 2.0 from 'matching' to 'simple'. to squelch this message<br />and maintain the current behavior after the default changes, use:<br /><br /> git config --global push.default matching<br /><br />to squelch this message and adopt the new behavior now, use:<br /><br /> git config --global push.default simple<br /><br />when push.default is set to 'matching', git will push local branches<br />to the remote branches that already exist with the same name.<br /><br />in git 2.0, git will default to the more conservative 'simple'<br />behavior, which only pushes the current branch to the corresponding<br />remote branch that 'git pull' uses to update the current branch.<br /><br />see 'git help config' and search for 'push.default' for further information.<br />(the 'simple' mode was introduced in git 1.7.11. use the similar mode<br />'current' instead of 'simple' if you sometimes use older versions of git)<br /><br />no refs in common and none specified; doing nothing.<br />perhaps you should specify a branch such as 'master'.<br />fatal: the remote end hung up unexpectedly<br /> doesn't exist. Closest matches:

To Top